home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr48 / 386p_200.zip / XVDRIVER.INC < prev    next >
Text File  |  1994-11-08  |  1KB  |  39 lines

  1. ; XGE VIDEO DRIVER:
  2. ; OFFSETS NEEDED TO HOOK THE MAIN PROGRAM
  3.                  ; start of XVD driver table
  4. _XVDTable     equ 0
  5.               ; index of video card/chipset subtype
  6.               ; this is for internal usage
  7. _XVDCMode     equ 4
  8.               ; XVD Current VIDEO Mode
  9. _XVDVPages    equ 8
  10.               ; VRAM on video board in 64k units
  11.               ; available to current video mode
  12. _XVDVModes    equ 12
  13.               ; flags of supported video modes
  14.               ; bit0 = text 80x25
  15.               ; bit1 = 320x200
  16.               ; bit2 = 640x400
  17.               ; bit3 = 640x480
  18.               ; bit4 = 800x600
  19.               ; bit5 = 1024x768
  20.               ; bit6 = 1280x1024
  21.  
  22. _XVDScanLine  equ 16
  23.               ; logical line size of display scanline
  24. _XVDAperture  equ 20
  25.               ; linear aperture base of video board
  26. _XVDASize     equ 24
  27.               ; size of linear aperture region (0 = no aperture)
  28. _XSquare      equ 28
  29. _YSquare      equ 32
  30.               ; _XSquare/_YSquare = aspect ratio
  31. _XVDTotRam    equ 36
  32.               ; total ram on board in 64k units
  33. _DispX        equ 40
  34.               ; display width
  35. _DispY        equ 44
  36.               ; display height
  37.                  ; end of XVD driver table
  38.  
  39.